Oracle Java Runtime Environment
'Cleanup Script to Uninstall All Previous Versions of JRE'On Error Resume NextConst HKLM = &h80000002Const SearchValue = "DisplayName"Const MatchData = "JAVA"Set objShell = WScript.CreateObj… Read More
An easy day at the office, having just finished one 'easy app' they want another, Java, "the static one please". I am supplied with an EXE and an MSI, Run the MSI it is going to: C:\Progra… Read More
To disable the expiration check, create a file called deployment.properties, with the following contents:deployment.expiration.check.enabled=falseCopy this file to C:\Program Files (x86)\Java\j… Read More
The registry key to tick "Suppress sponsor offers when installing or updating Java" appears to have changed in recent releases.Here's what I include as part of my install to get this set.Window… Read More
Java 8 update 11 is much the same as v7, but Java 8 update 20 has changed quite a bit. Release notes:http://www.oracle.com/technetwork/java/javase/8u20-relnotes-2257729.htmlThe MSI has far fewe… Read More
As of Java 7 update 10 there are 2 new properties: WEB_JAVA and WEB_JAVA_SECURITY_LEVEL. On MSI Installs I have added a transform that adds both properties to the Properties page with the valu… Read More
MSI Silent install of Java for x86 Java Will work on x86 systems and x64 systems. MSI install required for installing x86 Java on x64 systemsDue to compatibility problems with silent installin… Read More
Silent install Command Line against Executable passing info to the embeded MSI. For x86 executable, not for use under x64 OS. x86 Java on x64 OS requires MSI install. jre-7u11-windows-i586.e… Read More
Silent install Command Line against Executable passing info to the embeded MSI. For x64 executable. jre-7u11-windows-x64.exe /s /v"/passive /norestart AUTOUPDATECHECK=0 JAVAUPDATE=0 JU=0 WEB… Read More
REM JAVA Uninstall and cleanup script for through Java 1.7.u11 REM with install of Java 1.7.u11 x86 and X64 in Mixed Environment REM Calls removal of Java Autoupdate after install REM Skips… Read More
The simplest way is to use the EXE file straight from the website: jre-7u11-windows-i586.exe /s AUTOUPDATECHECK=0 IEXPLORER=1 JAVAUPDATE=0 JU=0 Mozilla=1 Read More
msiexec.exe /i "[location of msi file]\jre1.7.0_07.msi" TRANSFORMS="[location of mst file]\[name of mst file]" /l*v "[location of where to write log file]\java.log" /qb! This will install Java… Read More
Create a transform with Orca. Change the following values: Property - AutoUpdateCheck = 0 Property - Iexplorer = 1 Property - JavaUpdate = 0 Property - Mozilla = 1 Property - AgreeToLice… Read More
Here I published a tutorial for it and many others programs. Please comment on the blog if you have questions. http://it-grund.blogspot.com/2012/04/how-to-deployinstall-silently-and.html … Read More
If anyone notices sorry I posted this to the wrong spot the first time We mostly use Windows 7 x64 but we do have a few x86 systems so here is the script we run from the k1000 (after extract… Read More
We mostly use Windows 7 x64 but we do have a few x86 systems so here is the script we run from the k1000 (after extracting all files from the java.exe file we add them and the script to a compr… Read More
Have noticed a capture of JRE can have incorrectly permissioned HKCU\Software\Classes\CLSID entries in the read only part of the layer. This has caused OLE issues in Outlook 2010 forms like Vo… Read More
The following gets rid of all versions prior to the one specified in the script. Just used it to kill off everything prior to ver update 6 ver 24 Kudos to the author. Shame on sun. Maybe or… Read More
The following gets rid of all versions prior to the one specified in the script. Just used it to kill off everything prior to ver update 6 ver 24 Kudos to the author. Shame on sun. Maybe or… Read More
I have built ZEN deployments for several versions by extracting just the MSI and building an MST using the property settings listed in this section. In previous versions, the MSI was self-conta… Read More
Disable Automatic Update in Latest Versions Since approximately 1.6.18 / 6.0 update 18, Sun has included Java Auto Updater as a separate package that is automatically installed with the JRE. … Read More
On Update 20 you have to edit the %USERPRIFILE%\AppData\LocalLow\Sun\Java\Deployment\deployment.propertiers file if you want to turn off the Auto-Download function. Add following row: deploym… Read More
To add proxy information. (This is for version 1.6.0.X-14) Make 2 files with the filenames. "deployment.config" "deployment.properties" Look in the install.cmd script below to see where they g… Read More
For JRE 6_17 follow these steps: ------------------------------------------------------------ -Download from: "https://cds.sun.com/is-bin/INTERSHOP.enfinity/WFS/CDS-CDS_Developer-Site/en_US/-/U… Read More
For disabling the Update function in Update 16: Simply create a mst file and change the "AUTOUPDATECHECK" and "JAVAUPDATE" public properties to 0 Then run the msi with the mst file applyed (ms… Read More